﻿
/*Custom code by Matt Z:  subtracts characters remaining*/
function charChange()
{

    thoughts = document.getElementById("ctl00_ctl00_bodyContent_bodyContentA_thoughts");
    charsused = 8000- thoughts.value.length;
    text = charsused + " Characters Remaing";
    mychars = document.getElementById("chars");
    mychars.innerHTML = text;
}


function resetChars()
{
    text = "8000 Characters Remaing";
    mychars = document.getElementById("chars");
    mychars.innerHTML = text;
}
